I read carefully in the doc about || , it said:
o3 = true || false ==> return true
But when i try something like:
const x = 3 console.log(x === (4||3))
Why it return false?